hi,guys, i saw a interesting program today,the source code is:
Code:
#include <iostream>
using namespace std;

char a[] = "abcdefg";
char b[] = "1234567";
char c[] = "980123456789";

int main()
{

	strcpy(a, c);
	strcpy(b, c);
	cout << a << endl << b << endl << c << endl;
	return 0;
}
now , i let's have a test, please give the output of the program without computer and post it, then compile the program and run it in your computer, is your answer right?